home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / Build Examples next >
Text File  |  1997-09-05  |  757b  |  28 lines

  1. considering application responses
  2.     with timeout of 60000 seconds
  3.         tell application "CodeWarrior IDE 2.0.1"
  4.             activate
  5.             
  6.             open file {"Hendrix:Source:Raven 1.2:Examples:DropCount:DropCount.ケ"}
  7.             Make Project
  8.             Close Project
  9.             
  10.             open file {"Hendrix:Source:Raven 1.2:Examples:IconEdit:IconEdit.ケ"}
  11.             Make Project
  12.             Close Project
  13.             
  14.             open file {"Hendrix:Source:Raven 1.2:Examples:Quill:Quill.ケ"}
  15.             Set Current Target "Quill (Debug)"
  16.             Make Project
  17.             Close Project
  18.             
  19.             open file {"Hendrix:Source:Raven 1.2:Examples:Skeleton:Skeleton.ケ"}
  20.             Set Current Target "Skeleton (Debug)"
  21.             Make Project
  22.             
  23.             open file {"Hendrix:Source:Raven 1.2:Examples:BoxPaint:BoxPaint.ケ"}
  24.             Make Project
  25.             Close Project
  26.         end tell
  27.     end timeout
  28. end considering